home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
yam_i_dodatki
/
yammailcheck
/
getmcfiles.rexx
next >
Wrap
OS/2 REXX Batch file
|
1997-03-22
|
818b
|
27 lines
/* Script to retrieve extra files required for MailCheck */
options results
if show('P','YAM')=0 then do
address command 'run <>nil: yam:yam nocheck'
i=0
do until show('P','YAM')>0 | i=3
address command 'sys:rexxc/WaitForPort YAM'
i=i+1
end
if show('P','YAM')=0 then do
address command 'RequestChoice <>nil: "Error!" "Could not start YAM" "Hmm.."'
exit
end
end
address command 'echo "open ftp.wustl.edu*nmime*nsize 512K*ncd pub/aminet/comm/misc/*nget CheckModem.lha*ncd ../../mus/play/*nget Play16_1.7.lha*ncd ../../util/cdity/*nget OkayDokey14.lha*nquit" >T:FTPMail.tmp'
address 'YAM'
mailwrite
writemailto '"ftpmail@sunsite.doc.ic.ac.uk"'
writeletter 't:FTPMail.tmp'
writequeue
address command 'RequestChoice <>nil: "Request Complete" "Remember to send that mail..." "Okay"'
exit